home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / MATH / PI / PI.ZIP / PIDATA.PAS < prev    next >
Pascal/Delphi Source File  |  1996-06-07  |  388b  |  26 lines

  1. unit pidata;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
  7.  
  8. type
  9.   TPiDataModule = class(TDataModule)
  10.   private
  11.     { Private declarations }
  12.   public
  13.     { Public declarations }
  14.     cancel_operation: Boolean;
  15.     start_position: Integer;
  16.   end;
  17.  
  18. var
  19.   PiDataModule: TPiDataModule;
  20.  
  21. implementation
  22.  
  23. {$R *.DFM}
  24.  
  25. end.
  26.